6a8e5e911e62e3208bd12a0ca9ac9e32167074f6,app/src/main/java/com/github/pockethub/persistence/OrganizationRepositories.java,OrganizationRepositories,request,#,157

Before Change


                    });

            all.addAll(new UserReposClient(context).executeSync());
            all.addAll(new WatchedReposClient(context).executeSync());
            return new ArrayList<>(all);
        } else
            return new OrgsReposClient(context, org.login).executeSync();

After Change


                    });

            all.addAll(new UserReposClient().observable().toBlocking().first().first);
            all.addAll(new WatchedReposClient(org.name, null, 0).observable().toBlocking().first().first);
            return new ArrayList<>(all);
        } else
            return new OrgsReposClient(org.name, null, 0).observable().toBlocking().first().first;